how to look up players states in skyblock hypixel python

26

import requests

data = requests.get(
    url = "https://api.hypixel.net/skyblock/profiles",
    params = {
        "key": "YOUR_KEY_HERE",
        "name": "Carcroft"
    }
).json()

Comments

Submit
0 Comments